home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / NeXT-Icons / next-icon@gun.com / FAQ / FAQ.rtfd / ztiff < prev   
Encoding:
Text File  |  1993-10-06  |  208 b   |  14 lines

  1. #!/bin/csh
  2. set TIFFUTIL = /usr/bin/tiffutil
  3. if ("${1}" == "") then
  4.     goto usage
  5. endif
  6. foreach file (${*})
  7.     ${TIFFUTIL} -lzw ${file} -out ${file}
  8. end
  9. exit 0
  10.  
  11. usage:
  12.     echo usage: ztiff tiff-file-spec...
  13.     exit 1
  14.